3
How do I change the control's font

with Slider1 do
begin
	ThumbSize := 32;
	Font.Name := 'Tahoma';
	ForeColor := RGB(255,0,0);
	Caption[EXSLIDERLib_TLB.exThumbPart] := 'thumb';
end
2
How can I change the control's foreground color

with Slider1 do
begin
	ForeColor := RGB(255,0,0);
	ThumbSize := 32;
	Caption[EXSLIDERLib_TLB.exThumbPart] := 'thumb';
end
1
How can I change the control's background color

with Slider1 do
begin
	BackColor := RGB(0,255,0);
end